home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / zmdm.zoo / makefalc.sta < prev    next >
Text File  |  1991-04-27  |  851b  |  37 lines

  1. #
  2. # Makefile for Alcyon C (version 4.14 required) and STANDALONE versions
  3. #    of RZ and SZ.
  4. #    for use with PD MAKE distributed by us.
  5. #
  6. #    Fix paths below for your set up
  7. #        c:\include\    Path to include files
  8. #        c:\lib\        Path to C library files
  9. #
  10. #    Edit config.h before make'ing
  11. #
  12. #    Please use a decent version of gemstart.s that gives some
  13. #    breathing room to malloc()
  14. #
  15. #    Jwahar Bammi
  16.  
  17. SRC = common.c rz.c sz.c util.c tyme.c zm.c fileio.c
  18. RZOBJ = common.o rz.o util.o tyme.o zm.o fileio.o
  19. SZOBJ = common.o sz.o util.o tyme.o zm.o fileio.o
  20.  
  21. INCLUDE = c:\include
  22. LIB = c:\lib
  23. CPFLAGS = -i $(INCLUDE)\ -DDECL -DSTANDALONE
  24. LINKER = c:\bin\aln.prg
  25.  
  26. rz.prg : $(RZOBJ)
  27.     $(LINKER) -o rz.prg -c rzlnk
  28.  
  29. sz.prg : $(SZOBJ)
  30.     $(LINKER) -o sz.prg -c szlnk
  31.  
  32. $(RZOBJ) : common.h zmdm.h decl.h config.h
  33. $(SZOBJ) : common.h zmdm.h decl.h config.h
  34.  
  35. clean:
  36.     $(RM) *.o *.68k
  37.